home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2002 November / CD 1 / APC0211D1.ISO / workshop / prog / files / ActivePerl-5.6.1.633-MSWin32.msi / _e9eb9ef2e62c7586320770ef1d785731 < prev    next >
Encoding:
Text File  |  2002-05-30  |  179 b   |  8 lines

  1. # DirTree, diplay directory tree.
  2.  
  3. use Tk;
  4. use Tk::DirTree;
  5. my $top = MainWindow->new;
  6. my $dl  = $top->Scrolled('DirTree')->pack(-expand => 1 , -fill => 'both');
  7. MainLoop;
  8.